Xbasic

A5.LIBRARY_ENUM Function

Syntax

A5.Library_Enum(C lastname[,N options])

Library_List as C = A5.LIBRARY_ENUM( [ options as N ] )

Next_Library_Name as C = A5.LIBRARY_ENUM( lastname as C )

Arguments

Library_List

A list of letters in various formats, depending on the Flag variable.

Next_Library_Name

The next letter in the list of letters.

lastname

The quoted name of a letter.

options

Optional. Default = Null.

Null = Library name, full path, and filename.
4 = Library name
8 = Quoted Library name, full path, and filename.

Description

Returns the name of the next attached Library.

Discussion

The A5.LIBRARY_ENUM() method returns a CR-LF delimited list of all .ALB files. The .ALB file is an external library that is attached to the currently open database. By attaching an external library, you can share global scripts and other objects that were defined in other databases. To attach an external library, select File > Database Properties, and then select the Libraries tab.

Example

Refer to A5.FORM_ENUM().

See Also